home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / MPW / lgrind 1.0.1 / makefile-orig < prev    next >
Encoding:
Makefile  |  1993-04-24  |  1.4 KB  |  56 lines  |  [TEXT/MPS ]

  1. # Makefile for lgrind, a LaTeX prettyprinter
  2.  
  3. # $Id: Makefile,v 1.2 91/10/01 00:54:15 gvr Exp $
  4.  
  5. # You will almost certainly want to change these
  6. DESTDIR=./bin
  7. DEFSFILE=./lgrindefs
  8. TEXINPUTS=./inputs
  9.  
  10. SOURCES=lgrind.c regexp.c retest.c vgrindefs.c v2lg.c
  11. TEXFILES=lgrind.doc lgrind.sty fancyhead.doc fancyhead.sty \
  12.      docstrip.tex docstrip.cmd
  13. MANPAGES=lgrind.1 lgrindefs.5
  14. EXAMPLES=doc-lgrind.lg
  15. CMDS=lgrind
  16. OBJS=lgrind.o regexp.o retest.o vgrindefs.o v2lg.o
  17.  
  18. # CFLAGS=-O 
  19. CFLAGS=-g 
  20.  
  21. all:    $(CMDS)
  22.  
  23. lgrind: lgrind.o vgrindefs.o regexp.o
  24.     cc ${CFLAGS} -o lgrind lgrind.o vgrindefs.o regexp.o
  25.  
  26. lgrind.o: lgrind.c
  27.     cc ${CFLAGS} -DDEFSFILE=\"${DEFSFILE}\" -c lgrind.c
  28.  
  29. v2lg:    v2lg.o
  30.     cc ${CFLAGS} -o v2lg v2lg.o
  31.  
  32. tar:
  33.     tar cvf /tmp/lgrind.tar \
  34.        Makefile ${MANPAGES} lgrindefs ${SOURCES} ${TEXFILES} ${EXAMPLES}
  35.     compress /tmp/lgrind.tar
  36.  
  37. shar:
  38.     shar Makefile ${MANPAGES} lgrindefs ${SOURCES} ${TEXFILES} ${EXAMPLES}
  39.         > lgrind.shar
  40.  
  41. retest: retest.o regexp.o
  42.     cc ${CFLAGS} -o retest retest.o regexp.o
  43.  
  44. install: all
  45.     install -s lgrind ${DESTDIR}/lgrind
  46.     install -s lgrindefs ${DEFSFILE}
  47.     install -c lgrind.doc ${TEXINPUTS}/lgrind.doc
  48.     install -c lgrind.sty ${TEXINPUTS}/lgrind.sty
  49.     install -c lgrind.doc ${TEXINPUTS}/fancyhead.doc
  50.     install -c lgrind.sty ${TEXINPUTS}/fancyhead.sty
  51.     install -c lgrind.1 /cs/man/man1/lgrind.1
  52.     install -c lgrindefs.5 /cs/man/man5/lgrindefs.5
  53.  
  54. clean:
  55.     /bin/rm -f ${CMDS} ${OBJS} retest v2lg
  56.